/* .booking-section {
  position: relative;
  background-color: rgba(28, 28, 30, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  margin: 2rem auto;
  box-shadow: 0 0 12px rgba(13, 210, 65, 0.2);
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  min-height: 250px;
  width: 100%;
  max-width: 800px;
} */


#reserva-consultas .section-title {
  display: flex;
  justify-content: center;  /* centra horizontal */
  align-items: center;      /* centra vertical */
  gap: 0.5rem;              /* espacio entre icono y texto */
  text-align: center;
}

.whatsapp-link-contactar {
  display: inline-block;   /* para que respete el centrado */
  text-align: center;      /* centra el contenido interno (icono + texto) */
  margin: 0 auto;          /* centrado si el contenedor usa flex */
}
.cta-box {
  text-align: center;      /* centra el enlace dentro de cta-box */
}

.whatsapp-text {
  color: #25d38ac7; /* Verde oficial de WhatsApp */
}


/* ======== CALENDARIO DE RESERVAS ======== */
.booking-section {
  position: relative;
  background-color: rgba(28, 28, 30, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  margin: 2rem auto;
  box-shadow: 0 0 12px rgba(13, 210, 65, 0.2);
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  min-height: 250px; /* 👈 MUY IMPORTANTE */
}


.section-title-2 {
  display: flex;
  font-size: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  /* margin-bottom: var(--spacing-lg); */
  text-align: center;
}

.section-title-2 h5 {
  font-size: 1.3rem;
  font-weight: 900;
  /* margin-bottom: var(--spacing-xs); */
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.current-month {
  font-weight: 500;
  
  color: var(--color-primary);
  font-weight: bold;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  /* margin-bottom: 1.2rem; */
  margin-bottom: var(--spacing-md);
}

.nav-button {
  /* background: var(--gradient-primary); */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: none;
  /* border: 1px solid rgba(255, 255, 255, 0.25); */
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.3);
  /* transition: all 0.3s ease; */
  transition: var(--transition);
}

.nav-button:hover {
  transform: scale(1.08) translateY(-2px);
  /* transform: scale(1.1); */
  background: rgba(255, 255, 255, 0.25);
  color: #6cd48f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25),
              inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.calendar-grid {
  
  margin-top: 1rem;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 2rem;
  background-color: #1f1f1f;
  color: #ffffff;
}







.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-day:hover {
  background-color: rgba(44, 44, 46, 0.6);
}

.calendar-day:hover:not(.disabled):not(.other-month) {
  background-color: #21e663;
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 3px 8px rgba(33, 230, 99, 0.5);
}

/* .calendar-day.selected {
  background-color: #21e663;
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(33, 230, 99, 0.6);
  transform: scale(1.08);
} */

/* .calendar-day.selected {
  background-color: var(--color-primary);
  color: var(--text-dark);
  font-weight: 600;
} */

.calendar-day.today {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  font-weight: bold;
  color: var(--color-primary);
}



.calendar-day.selected {
  background-color: #21e663;
  color: #000;
  font-weight: 700; /* Más grueso */
  box-shadow: 0 4px 10px rgba(33, 230, 99, 0.6);
  transform: scale(1.08);
}


.calendar-day.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.calendar-day:hover:not(.disabled):not(.other-month) {
  background-color: #21e663;
  opacity: 0.5;
  transform: scale(1.08);
  box-shadow: 0 3px 8px rgba(33, 230, 99, 0.5);
}


.calendar-day.other-month {
  opacity: 0.5;

}


.booking-summary .summary-details {
  /* background-color: #202020; */
  padding: 0.5rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  color: #ccc;
  font-size: 0.92rem; /* detalles aún más compactos */
  text-align: center;
}





/* 
////////////////////////////////////// */

/* ====== CSS: fuerza visual y no-click para días fuera del mes actual ====== */
.calendar-day.other-month {
  opacity: 0.42;
  color: #9aa3ad;
  pointer-events: none; /* evita clics */
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* Mantén el estilo .disabled (por si se aplica a días actuales deshabilitados) */
.calendar-day.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Hover solo para días válidos (no other-month ni disabled) */
.calendar-day:not(.other-month):not(.disabled):hover {
  background-color: #21e663;
  opacity: 0.95;
  transform: scale(1.06);
  box-shadow: 0 3px 8px rgba(33, 230, 99, 0.35);
}

/* Mejora accesibilidad: marca today y selected */
.calendar-day.today {
  border: 2px solid var(--accent, #21e663);
  border-radius: 50%;
  color: var(--accent, #21e663);
  font-weight: 700;
}
.calendar-day.selected {
  background-color: #21e663;
  color: #000;
  box-shadow: 0 6px 12px rgba(33,230,99,0.28);
  transform: scale(1.06);
}






/* .timezone-info {
  color: #cccccc;
  text-align: center;
  font-size: 0.9rem;
  margin: 1rem 0;
} */

.timezone-info {
  text-align: center;
  color: #CBD5E1;
  margin-bottom: var(--spacing-md);
}


.timezone-info strong {
  color: #fff;
}

/* .time-slots-container {
  margin-top: 1.5rem;
} */

.time-slots-container {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0 0.5rem;
}



.time-slot.selected {
  background-color: var(--color-primary);
  color: var(--text-dark);
  font-weight: 600;
}

/* 
.time-slots-container h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
} */

.time-slots-container h4 {
  color: #21e663;
  margin-bottom: 1rem;
}


.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(85px, 1fr)
  ); /* Aumentado de 70px */
  gap: 0.6rem; /* Aumentado de 0.4rem */
}



.time-slot {
  padding: 0.7rem 0; /* Aumentado de 0.5rem */
  text-align: center;
  background-color: #2c2c2e3d;
  color: #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem; /* Aumentado de 0.8rem */
  font-weight: 500;
}


.time-slots-grid button {
  background-color: #2c2c2c;
  border: 1px solid #444;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slots-grid button:hover {
  background-color: #3a3a3a;
  border-color: #1dd1a1;
}

.booking-summary {
  background-color: rgba(30, 30, 32, 0.411);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.582);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
  padding: 1.2rem;
  margin-top: 1.5rem;
}




.booking-summary h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.summary-details div {
  margin-bottom: 0.5rem;
  text-align: left;
}

.summary-details strong {
  color: var(--color-primary);
}

/* .change-selection {
  display: inline-block;
  margin-top: 1rem;
  color: #1dd1a1;
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
} */

/* .change-selection {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
} */

.change-selection {
  display: inline-block;
  margin-top: 1rem;
  /* color: var(--color-primary); */
  color: #1dd1a1;
  text-decoration: none;

  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}


.change-selection:hover {
  text-decoration: underline;
}

.booking-form {
  margin-top: 1.5rem;
}


.booking-form input::placeholder {
  color: #888;
}



.booking-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.btn.btn-primary:hover {
  background-color: #1cbf54;
}


.form-group {
  /* margin-bottom: 1.5rem; */
  text-align: left;
}

.form-group {
  /* margin-bottom: var(--spacing-md); */
  margin-bottom: 2.2rem;
}

/* .form-group label {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  display: block;
} */

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  background-color: #2c2c2ea2;
  color: #fff;
  border: 1px solid #444;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
/* ********************************************************************* */

.or {
  position: relative;
}
.or::before {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  left: 0;
  top: 45%;
  background-image: linear-gradient(
    to right,
    #71717155 0 40%,
    transparent 40% 60%,
    #71717155 60%
  );
}
p a {
  border-bottom: 1px solid #717171;
}
input + p {
  font-size: small;
  text-align: left;
}
.sso {
  margin-bottom: 30px;
}
.sso + p {
  font-size: small;
}
p input:invalid:not(:placeholder-shown) {
  border-color: red;
  background-image: url(/iconos/checked_red.png);
}
input:valid:not(:placeholder-shown) {
  background-image: url(/iconos/checked_green.png);
}
input:invalid:not(:placeholder-shown),
input:valid:not(:placeholder-shown) {
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
}
input:invalid:not(:placeholder-shown) + p {
  color: #a20e0e;
}
input:invalid ~ button[type="button"] {
  opacity: 0.6;
  pointer-events: none;
}

input:invalid ~ button[type="button"] {
  opacity: 0.6;
  pointer-events: none;
}




.form-group input:focus {
  outline: none;
  border-color: #1eb9b9;
  box-shadow: 0 0 0 2px rgba(30, 185, 185, 0.212);
}

.area-interes-container {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
 
}

/* 
.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 12px;
  background: rgba(15, 23, 42, 0.3);
  border: none;
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */


.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 12px;
  background: rgba(15, 23, 42, 0.3);
  border: none;
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grupo-opciones {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.2);
}
/* .grupo-opciones.show {
  display: grid;
} */

.grupo-opciones.show {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem; /* igual que .interes-buttons */
  justify-content: center;
  margin-left: 0px;
}
.interes-btn {
  padding: 8px 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: var(--light);
  cursor: pointer;
  transition: var(--transition);
}



.interes-btn:hover, .interes-btn.selected {
  background: var(--gradient-primary);
}

.interes-btn:hover {
  background: var(--gradient-primary);
}

#notes {
  height: 100px;
  resize: vertical;
  margin-bottom: 10px;
}



.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}



/* .btn-2 {
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  background: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
} */

.btn-2 {
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  background: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  margin-top: -150px;
  margin-left: 1px;
}

.btn-2:hover {
  background-color: var(--color-primary);
  color: var(--text-dark);
}


.btn-f {
  width: 100%;
  height: auto;
  border-radius: 25px;
  outline: none;
  background-size: 200%;
  font-size: 1.2rem;
  color: #110707ec;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.6s;
  align-items: center;
  text-align: center;
  padding: 12px 20px;
  background-color: #0dd241;
  background-image: linear-gradient(to right, #86dc15d0, #59d338e1, #6ff02446);
  box-shadow: 8px 8px 10px #0000005d;
  border: 1px solid #fff;
  margin-left: -52px;
} 

/* 
.btn-f {
  width: 100%;
  height: 24px;
  border-radius: 25px;
  outline: none;
  background-size: 200%;
  font-size: 1.2rem;
  color: #110707ec;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.6s;
  align-items: center;
  text-align: center;
  margin-top: 150px;

  cursor: pointer;
  border: 1px solid #fff;

  background-color: #0dd241;
  background-image: linear-gradient(to right, #86dc15d0, #59d338e1, #6ff02446);
  box-shadow: 8px 8px 10px #0000005d;
  align-items: center;
  text-align: center;
  margin-left: -52px;
  
} */


/* 
.btn-f:hover {
  background-position: right;
  background-image: linear-gradient(to right, #3bff66, #74f158, #12ff22c0);
  box-shadow: 8px 8px 10px #0000005d;
} */

.btn-f:hover {
  background-position: right;
  background-image: linear-gradient(to right, #3bff66, #74f158, #12ff22c0);
  box-shadow: 8px 8px 10px #0000005d;
}



/* 
*********************FORMULARIO*************** */

input[type="date"]::-webkit-calendar-picker-indicator {
  transition: opacity 0.5s;
}

input[type="date"].fecha-seleccionada::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  transition: opacity 0.5s;
}

input[type="date"].fecha-seleccionada::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}

.fecha-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.fecha-input:focus {
  border-color: #aaa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input:invalid ~ .btn[type="button"] {
  opacity: 0.6;
  cursor: pointer;
}



.iti--allow-dropdown {
  width: 100%;
  padding: 0px;
}
.iti__selected-flag {
  margin-left: 14px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  padding-left: 5px;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #d6e6e6;
  box-shadow: 0 0 0 2px rgba(30, 185, 185, 0.2);
}



label {
  color: rgba(246, 255, 248, 0.945);
}





label[for="fullName"],
label[for="fullApellido"],
label[for="whatsApp"],
label[for="email"],
label[for="Area-interes"] {
  font-size: 1.1rem;
  font-weight: 600;
}
#whatsApp {
  padding-left: 60px;  /* Ajusta según el ancho de la bandera */
  
}

.form-group.scroll-item p {
  font-style: oblique;
  font-size: 12px;
  color: #ffffffab;
}

/* ======== ACCORDION ======== */
.accordion-item {
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);

  margin-bottom: 2rem; 
 
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* sombra ligera */
  ;
}

.accordion-toggle {
  width: 100%;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 12px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: background 0.3s;
  
}



.accordion-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.accordion-toggle::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.accordion-toggle.active::after {
  content: "−";
  transform: rotate(180deg);
}

.grupo-opciones {
  display: none;
  padding: 12px;
  animation: fadeDown 0.3s ease;
}

.accordion-item.open .grupo-opciones {
  display: block;
}

/* ======== INTERÉS BUTTONS ======== */
.interes-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.interes-btn:hover {
  background: rgba(255,255,255,0.2);
}

.interes-btn.selected {
  background: var(--accent, #00c896);
  color: #111;
  font-weight: 600;
  border-color: transparent;
}

/* Animación suave */
@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}


/* Ajustes de ancho para pantallas grandes */
@media (min-width: 992px) {
  /* Contenedor principal del calendario - TAMAÑO AUMENTADO */
  .calendar-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(28, 28, 30, 0.8);
    border-radius: 15px;
    margin: 2rem auto;
    width: 100%;
    max-width: 600px; /* Tamaño aumentado de 420px a 500px */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  }
  
  /* Cuerpo del calendario - MÁS ESPACIADO */
  .calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
    gap: 0.6rem; /* Aumentado de 0.4rem */
    padding: 0 0.5rem;
  }
  .booking-summary {
    max-width: 500px;   /* controla el ancho de la tarjeta */
    margin: 0 auto;     /* centra horizontalmente */
    text-align: center; /* centra el contenido interno */
  }

  .booking-summary .summary-details {
    text-align: left;   /* opcional: mantiene Fecha, Hora y Duración alineadas */
    display: inline-block; /* hace que se vean ordenadas dentro del centro */
  }

  /* Centrar el enlace Cambiar Fecha */
.booking-summary .change-selection {
 
  margin-top: 15px;     /* un poco de espacio arriba */
  margin-left: 200px;
}


  .booking-section {
    position: relative;
    background-color: rgba(28, 28, 30, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    margin: 2rem auto;
    box-shadow: 0 0 12px rgba(13, 210, 65, 0.2);
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 250px; /* 👈 MUY IMPORTANTE */
  }
  
  /* Estilos generales del contenedor */
  .formulario-container {
    backdrop-filter: blur(7px);
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 80%;
    margin: 40px auto;
  }
  .formulario-container {
    padding: 20px;
    width: 95%;
    margin: 20px auto;
  }

  .formulario-container {
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(7px);
    border-radius: 15px;
    border-radius: 10px;
    padding: 20px;
    width: 40%;
    margin: 40px auto;
    margin: 4px auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 400px;
  }
  
  /* ********************************************************************************************************** */
  form {
    display: flex;
    margin: auto;
    margin-block: 30px;
    width: min(800px, 90vw);
    gap: 7px;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
  }


  
.btn-f {
  width: 50%;
  height: auto;
  border-radius: 25px;
  outline: none;
  background-size: 200%;
  font-size: 1.2rem;
  color: #110707ec;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.6s;
  align-items: center;
  text-align: center;
  padding: 12px 20px;
  background-color: #0dd241;
  background-image: linear-gradient(to right, #86dc15d0, #59d338e1, #6ff02446);
  box-shadow: 8px 8px 10px #0000005d;
  border: 1px solid #fff;
  
    align-items: center;
    text-align: center;
    
    
    margin: auto;
} 

.booking-summary {
  max-width: 680px;
  margin: 1rem auto;
  padding: 1.2rem;
  background-color: #2c2c2c;
  border-radius: 10px;
  border: 1px solid #444;
  color: #fff;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  


}


.booking-summary .summary-details {
  /* background-color: #202020; */
  padding: 0.5rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  color: #ccc;
  font-size: 0.82rem; /* detalles aún más compactos */
 
}

  
  
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .accordion-toggle {
    font-size: 0.9rem;
    padding: 10px 14px;
  }
  .interes-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

 

}



@media (max-width: 768px) {
  .booking-section {
      padding: 1.5rem;
  }
  
  .calendar-grid {
      padding: 1.5rem;
  }

  
  
  .time-slots-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .grupo-opciones {
      grid-template-columns: 1fr;
    
  }
}